home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Visual Basic new SourceCode and Projects / AlbumScreenSaver / HLP.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1999-08-24  |  2.4 KB  |  78 lines

  1. VERSION 5.00
  2. Begin VB.Form hlp 
  3.    BackColor       =   &H00FFFFFF&
  4.    BorderStyle     =   5  'Sizable ToolWindow
  5.    Caption         =   "SoftSaver Help"
  6.    ClientHeight    =   6420
  7.    ClientLeft      =   60
  8.    ClientTop       =   300
  9.    ClientWidth     =   7830
  10.    Icon            =   "hlp.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    Picture         =   "hlp.frx":08CA
  15.    ScaleHeight     =   6420
  16.    ScaleWidth      =   7830
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   3  'Windows Default
  19.    Begin VB.CommandButton Command1 
  20.       Caption         =   "Help"
  21.       BeginProperty Font 
  22.          Name            =   "MS Sans Serif"
  23.          Size            =   13.5
  24.          Charset         =   0
  25.          Weight          =   700
  26.          Underline       =   0   'False
  27.          Italic          =   0   'False
  28.          Strikethrough   =   0   'False
  29.       EndProperty
  30.       Height          =   465
  31.       Index           =   1
  32.       Left            =   4140
  33.       TabIndex        =   1
  34.       Top             =   5700
  35.       Width           =   1485
  36.    End
  37.    Begin VB.CommandButton Command1 
  38.       Caption         =   "Cool"
  39.       BeginProperty Font 
  40.          Name            =   "MS Sans Serif"
  41.          Size            =   13.5
  42.          Charset         =   0
  43.          Weight          =   700
  44.          Underline       =   0   'False
  45.          Italic          =   0   'False
  46.          Strikethrough   =   0   'False
  47.       EndProperty
  48.       Height          =   465
  49.       Index           =   0
  50.       Left            =   6210
  51.       TabIndex        =   0
  52.       Top             =   5700
  53.       Width           =   1485
  54.    End
  55. Attribute VB_Name = "hlp"
  56. Attribute VB_GlobalNameSpace = False
  57. Attribute VB_Creatable = False
  58. Attribute VB_PredeclaredId = True
  59. Attribute VB_Exposed = False
  60. ' Hi Folks this application is written by
  61. ' Nagalla Anil Choudary
  62. ' Software Engineer
  63. ' s/o N.Ram Babu
  64. ' D.K.Pallem Bapatla-522 101
  65. ' A.P  , India
  66. ' u can use this application as a photo album also
  67. ' You can reproduce , customize this code in any manner
  68. ' If u satisfy or modify please leave your suggestions
  69. ' Happy programming
  70. Private Sub Command1_Click(Index As Integer)
  71. If Index = 1 Then
  72.     MsgBox ("No further Help please..")
  73.     Unload Me
  74. End If
  75. End Sub
  76. Private Sub Form_Load()
  77. End Sub
  78.